home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 December / PCWorld_2005-12_cd.bin / software / temacd / tiny / tpf-6[1].5.126.exe / Tiny Firewall 2005.msi / webui.dll / COMMON / TOOLS.XSL < prev    next >
Encoding:
Extensible Markup Language  |  2005-08-17  |  12.3 KB  |  162 lines

  1.  ■<?xml version="1.0"?>
  2. <!--
  3. /*//////////////////////////////////////////////////////////////////////
  4. Filename:          tools.xsl
  5. Company Name:      Computer Associates International, Inc.
  6. Legal Copyright: Copyright (c) Computer Associates International, Inc.
  7. Author:          Marek Matus (marek.matus@ca.com)
  8. Product:          Tiny Firewall
  9. Description:      help functions
  10. ///////////////////////////////////////////////////////////////////////*/
  11.  -->
  12. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt">
  13.     <xsl:output method="html"/>
  14.     <xsl:template name="formatDaytime">
  15.         <xsl:param name="daytime"/>
  16.         
  17.         <xsl:variable name="timeOfDay2">
  18.             <xsl:call-template name="replace">
  19.                 <xsl:with-param name="string" select="$daytime"/>
  20.                 <xsl:with-param name="what" select="'#'"/>
  21.                 <xsl:with-param name="with" select="' '"/>
  22.             </xsl:call-template>
  23.             
  24.         </xsl:variable>
  25.         
  26.         <xsl:call-template name="replaceWithBR">
  27.             <xsl:with-param name="string" select="$timeOfDay2"/>
  28.             <xsl:with-param name="what" select="'|'"/>
  29.         </xsl:call-template>
  30.     </xsl:template>
  31.     <xsl:template name="replaceWithBR">
  32.         <xsl:param name="string" />
  33.         <xsl:param name="what" />
  34.     
  35.         <xsl:choose>
  36.             <!-- if the string contains an apostrophe... -->
  37.             <xsl:when test="contains($string, $what)">
  38.                 <!-- ... give the value before the apostrophe... -->
  39.                 <xsl:value-of select="substring-before($string, $what)"/>
  40.                 <!-- ... the escaped apostrophe ... -->
  41.                 <!-- <xsl:value-of disable-output-escaping="no" select="$with"/> -->
  42.                 <br/>
  43.                 <!-- ... and the result of applying the template to the string after the apostrophe -->
  44.                 <xsl:call-template name="replaceWithBR">
  45.                     <xsl:with-param name="string" select="substring-after($string, $what)" />
  46.                     <xsl:with-param name="what" select="$what"/>
  47.                 </xsl:call-template>
  48.             </xsl:when>
  49.     
  50.             <xsl:otherwise>
  51.                 <xsl:value-of select="$string"/>
  52.             </xsl:otherwise>
  53.         </xsl:choose>
  54.     </xsl:template>
  55.     
  56.     <xsl:template name="replace">
  57.         <xsl:param name="string" />
  58.         <xsl:param name="what" />
  59.         <xsl:param name="with" />
  60.     
  61.         <xsl:choose>
  62.             <!-- if the string contains an apostrophe... -->
  63.             <xsl:when test="contains($string, $what)">
  64.                 <!-- ... give the value before the apostrophe... -->
  65.                 <xsl:value-of select="substring-before($string, $what)"/>
  66.                 <!-- ... the escaped apostrophe ... -->
  67.                 <xsl:value-of disable-output-escaping="no" select="$with"/>
  68.                 
  69.                 <!-- ... and the result of applying the template to the string after the apostrophe -->
  70.                 <xsl:call-template name="replace">
  71.                     <xsl:with-param name="string" select="substring-after($string, $what)" />
  72.                     <xsl:with-param name="what" select="$what"/>
  73.                     <xsl:with-param name="with" select="$with"/>
  74.                 </xsl:call-template>
  75.             </xsl:when>
  76.     
  77.             <xsl:otherwise>
  78.                 <xsl:value-of select="$string"/>
  79.             </xsl:otherwise>
  80.         </xsl:choose>
  81.     </xsl:template>
  82.     
  83.         <xsl:template name="printJSText">
  84.             <xsl:param name="string" />
  85.             
  86.             <xsl:variable name="str1">
  87.                 <xsl:call-template name="replaceSpecCh">
  88.                     <xsl:with-param name="string" select="$string"/>
  89.                 </xsl:call-template>
  90.             </xsl:variable>
  91.             
  92.             <xsl:call-template name="replaceQuot">
  93.                 <xsl:with-param name="string" select="$str1"/>
  94.             </xsl:call-template>
  95.         </xsl:template>
  96.         
  97.         <xsl:template name="replaceQuot">
  98.             <xsl:param name="string" />
  99.                                     
  100.             <xsl:choose>
  101.                 <!-- if the string contains an apostrophe... -->
  102.                 <xsl:when test="contains($string, &quot;'&quot;)">
  103.                     <!-- ... give the value before the apostrophe... -->
  104.                     <xsl:value-of select="substring-before($string, &quot;'&quot;)"/>
  105.                     <!-- ... the escaped apostrophe ... -->
  106.                     <xsl:text>\'</xsl:text>
  107.                     <!-- ... and the result of applying the template to the string after the apostrophe -->
  108.                     <xsl:call-template name="replaceQuot">
  109.                         <xsl:with-param name="string" select="substring-after($string, &quot;'&quot;)" />
  110.                     </xsl:call-template>
  111.                 </xsl:when>
  112.                 <!-- otherwise... -->
  113.                 <xsl:otherwise>
  114.                     <!-- ... just give the value of the string -->
  115.                     <xsl:value-of select="$string"/>
  116.                 </xsl:otherwise>
  117.             </xsl:choose>
  118.         </xsl:template>
  119.         
  120.         <xsl:template name="replaceSpecCh">
  121.             <xsl:param name="string" />
  122.                                                 
  123.             <xsl:choose>
  124.                 <!-- if the string contains an apostrophe... -->
  125.                 <xsl:when test="contains($string, &quot;\&quot;)">
  126.                     <!-- ... give the value before the apostrophe... -->
  127.                     <xsl:value-of select="substring-before($string, '\')"/>
  128.                     <!-- ... the escaped apostrophe ... -->
  129.                     <xsl:text>\\</xsl:text>
  130.                     <!-- ... and the result of applying the template to the string after the apostrophe -->
  131.                     <xsl:call-template name="replaceSpecCh">
  132.                         <xsl:with-param name="string" select="substring-after($string, '\')" />
  133.                     </xsl:call-template>
  134.                 </xsl:when>
  135.                 <!-- otherwise... -->
  136.                 <xsl:otherwise>
  137.                     <!-- ... just give the value of the string -->
  138.                     <xsl:value-of select="$string"/>
  139.                 </xsl:otherwise>
  140.             </xsl:choose>
  141.         </xsl:template>
  142.         <!-- If app rep group is special then return true -->
  143.         <xsl:template name="isSpecialAppRepGroup">
  144.             <xsl:param name="name"/>
  145.     
  146.             <xsl:choose>
  147.                 <xsl:when test="$name='AllowHiddenFilesApps' or $name='AllowReadOnlyFilesApps'">
  148.                     <xsl:text>true</xsl:text>
  149.                 </xsl:when>
  150.     
  151.                 <xsl:otherwise>
  152.                     <xsl:text>false</xsl:text>
  153.                 </xsl:otherwise>
  154.             </xsl:choose>
  155.         </xsl:template>
  156. </xsl:stylesheet>